From: Juanma Barranquero Date: Thu, 4 Jan 2007 00:15:16 +0000 (+0000) Subject: (Fwindow_end): Fix use of >= operator. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~2996 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=53eb526a7947ac05c9fe6c7e2d1a6278b48d012b;p=emacs.git (Fwindow_end): Fix use of >= operator. --- diff --git a/src/window.c b/src/window.c index 2a7b5ef6c68..d052a5786dc 100644 --- a/src/window.c +++ b/src/window.c @@ -1183,7 +1183,7 @@ if it isn't already recorded. */) if (! NILP (update) && ! (! NILP (w->window_end_valid) && XFASTINT (w->last_modified) >= BUF_MODIFF (b) - && XFASTINT (w->last_overlay_modified) => BUF_OVERLAY_MODIFF (b)) + && XFASTINT (w->last_overlay_modified) >= BUF_OVERLAY_MODIFF (b)) && !noninteractive) { struct text_pos startp;